Component org.nuxeo.ecm.wall.actions
In bundle org.nuxeo.ecm.wall
Contributions
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.ecm.wall.actions">
<extension target="org.nuxeo.ecm.platform.actions.ActionService"
point="actions">
<action id="TAB_WORKSPACE_WALL" link="/incl/tabs/default_document_wall.xhtml" order="15"
label="action.view.wall" icon="/icons/file.gif">
<category>VIEW_ACTION_LIST</category>
<filter-id>showWorkspaceWall</filter-id>
</action>
<action id="TAB_SOCIAL_WORKSPACE_WALL" link="/incl/tabs/social_workspace_wall.xhtml" order="-10"
label="action.view.wall" icon="/icons/file.gif">
<category>VIEW_ACTION_LIST</category>
<filter-id>showSocialWorkspaceWall</filter-id>
</action>
</extension>
<extension target="org.nuxeo.ecm.platform.actions.ActionService"
point="filters">
<filter id="showWorkspaceWall">
<rule grant="true">
<type>Workspace</type>
</rule>
</filter>
<filter id="showSocialWorkspaceWall">
<rule grant="true">
<type>SocialWorkspace</type>
</rule>
</filter>
</extension>
</component>